home *** CD-ROM | disk | FTP | other *** search
/ The CICA Windows Explosion! / The CICA Windows Explosion! - Disc 2.iso / winsock / ircii2-6.zip / SRC\IRCII-2.6\INCLUDE\EDIT.H < prev    next >
C/C++ Source or Header  |  1994-12-28  |  900b  |  49 lines

  1. /*
  2.  * edit.h: header for edit.c 
  3.  *
  4.  * Written By Michael Sandrof
  5.  *
  6.  * Copyright(c) 1990 
  7.  *
  8.  * See the COPYRIGHT file, or do a HELP IRCII COPYRIGHT 
  9.  *
  10.  * @(#)$Id: edit.h,v 1.6 1994/07/02 02:38:10 mrg Stab $
  11.  */
  12.  
  13. #ifndef _EDIT_H_
  14. #define _EDIT_H_
  15.  
  16. extern    char    *sent_nick;
  17. extern    char    *sent_body;
  18. extern    char    *recv_nick;
  19. extern    void    load();
  20. extern    void    send_text();
  21. extern    void    eval_inputlist();
  22. extern    void    parse_command();
  23. extern    void    parse_line();
  24. extern    void    edit_char();
  25. extern    void    ExecuteTimers();
  26. extern    void    ison_ison();
  27. extern    void    query __P((char *, char *));
  28.  
  29. #define AWAY_ONE 0
  30. #define AWAY_ALL 1
  31.  
  32. #define STACK_POP 0
  33. #define STACK_PUSH 1
  34. #define STACK_SWAP 2
  35.  
  36. /* a structure for the timer list */
  37. typedef struct    timerlist_stru
  38. {
  39.     int    ref;
  40.     int    in_on_who;
  41.     time_t    time;
  42.     char    *command;
  43.     struct    timerlist_stru *next;
  44. }    TimerList;
  45.  
  46. extern TimerList *PendingTimers;
  47.  
  48. #endif /* _EDIT_H_ */
  49.